lisp/frame.el (make-frame): Don't quote display name in error message.
authorJuanma Barranquero <lekktu@gmail.com>
Sun, 23 Mar 2014 22:11:59 +0000 (23:11 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Sun, 23 Mar 2014 22:11:59 +0000 (23:11 +0100)
lisp/ChangeLog
lisp/frame.el

index b7ff98249b4e2eb0e74632b88b23e886368d8172..c907dbb977b4058c45e3da4e7b7a2bc19ec704f9 100644 (file)
@@ -1,3 +1,8 @@
+2014-03-23  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frame.el (make-frame): Don't quote display name in error message,
+       it is already a string.
+
 2014-03-23  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
 
        * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
index b62c939d536375dccccef316b00e5ea8f35c4eea..7b0a0a80082ddd79e2795f308cf1a1358a5d07fc 100644 (file)
@@ -668,7 +668,7 @@ the new frame according to its own rules."
              (cdr (assq 'window-system parameters)))
              (display
               (or (window-system-for-display display)
-                  (error "Don't know how to interpret display \"%S\""
+                  (error "Don't know how to interpret display %S"
                          display)))
             (t window-system)))
         (frame-creation-function (cdr (assq w frame-creation-function-alist)))